home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / Bonus / Plasmatech / ptscp_examples.exe / %MAINDIR% / Examples / NewFileEdit / CBuilder / FMain.dfm / FMain.txt
Encoding:
Text File  |  2001-08-31  |  1.2 KB  |  52 lines

  1. object frmMain: TfrmMain
  2.   Left = 208
  3.   Top = 103
  4.   BorderIcons = [biSystemMenu, biMinimize]
  5.   BorderStyle = bsSingle
  6.   Caption = 'Shell Control Pack - Edit New File Example'
  7.   ClientHeight = 252
  8.   ClientWidth = 455
  9.   Font.Color = clWindowText
  10.   Font.Height = -11
  11.   Font.Name = 'MS Sans Serif'
  12.   Font.Style = []
  13.   PixelsPerInch = 96
  14.   TextHeight = 13
  15.   object PTShellList1: TPTShellList
  16.     Left = 8
  17.     Top = 8
  18.     Width = 209
  19.     Height = 233
  20.     ReadOnly = False
  21.     IconOptions.AutoArrange = True
  22.     OnInsert = PTShellList1Insert
  23.     TabOrder = 0
  24.     ViewStyle = vsList
  25.   end
  26.   object btnCreate: TButton
  27.     Left = 232
  28.     Top = 8
  29.     Width = 217
  30.     Height = 23
  31.     Caption = '&Create File and Edit Name'
  32.     TabOrder = 1
  33.     OnClick = btnCreateClick
  34.   end
  35.   object Memo1: TMemo
  36.     Left = 232
  37.     Top = 152
  38.     Width = 209
  39.     Height = 89
  40.     BorderStyle = bsNone
  41.     Lines.Strings = (
  42.       'This example shows how to force a '
  43.       'TPTShellList control to show a recently '
  44.       'added file, and edit that file'#39's caption.'
  45.       ''
  46.       'An efficient algorithm is used which avoids '
  47.       'scanning the Items[ ] array.')
  48.     ParentColor = True
  49.     TabOrder = 2
  50.   end
  51. end
  52.